home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 April: Mac OS SDK / Dev.CD Apr 98 SDK2.toast / Development Kits (Disc 2) / Word Services SDK 1.0.8 / Writeswell Jr 1.2.3 Sources ƒ / Library Source / Gripe.h < prev    next >
Encoding:
Text File  |  1997-01-13  |  227 b   |  10 lines  |  [TEXT/MMCC]

  1. #undef USE_DEBUGGER    /* Undefine this to replace debugger calls with alerts */
  2.  
  3. #ifdef USE_DEBUGGER
  4. #define Gripe( foo )    DebugStr( foo )
  5. #else
  6. #define Gripe( foo )    RealGripe( foo )
  7. #endif
  8.  
  9. void RealGripe( StringPtr complaint );
  10.